home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
program
/
vol16n13.zip
/
OPENTR.ZIP
/
OT_SRC.ZIP
/
OPTDLG.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-26
|
1KB
|
51 lines
// OptDlg.h : header file
//
// OpenTrap Version 1.00 by Gregory A. Wolking
// Copyright ⌐ 1997 Ziff-Davis Publishing
// First published in PC Magazine, US Edition, July 1997.
/////////////////////////////////////////////////////////////////////////////
// COptDlg dialog
class COptDlg : public CDialog
{
// Construction
public:
COptDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(COptDlg)
enum { IDD = IDD_OPTION_DIALOG };
CStatic m_lblBuf2;
UINT m_intLogSize;
BOOL m_bSaveSettings;
int m_intVM;
int m_intAction;
BOOL m_bErrorsOnly;
BOOL m_bHide;
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(COptDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(COptDlg)
virtual BOOL OnInitDialog();
virtual void OnOK();
afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
afx_msg void OnContextHelp();
private:
UINT min_buf_size_K;
UINT m_intHelpContext;
};